home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / idlelib / buildapp.py < prev    next >
Text File  |  2005-10-18  |  373b  |  18 lines

  1. #
  2. # After running python setup.py install, run this program from the command
  3. # line like so:
  4. #
  5. # % python2.3 buildapp.py build
  6. #
  7. # A double-clickable IDLE application will be created in the build/ directory.
  8. #
  9.  
  10. from bundlebuilder import buildapp
  11.  
  12. buildapp(
  13.         name="IDLE",
  14.         mainprogram="idle.py",
  15.         argv_emulation=1,
  16.         iconfile="Icons/idle.icns",
  17. )
  18.